The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "dist:DBIx-Class-Helpers dbix class"

DBIx::Class::Helpers - Simplify the common case stuff for DBIx::Class. River stage two • 11 direct dependents • 16 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helpers::Util - Helper utilities for DBIx::Class components River stage two • 11 direct dependents • 16 total dependents

A collection of various helper utilities for DBIx::Class stuff. Probably only useful for components....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet - All the ResultSet Helpers in one place River stage two • 11 direct dependents • 16 total dependents

This is just a simple Helper helper that includes all of the ResultSet Helpers in one convenient module. It does not include deprecated helpers. NOTE You probably want this applied to your entire schema. The most convenient way to do that is to make ...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::ToJSON - Remove the boilerplate from your TO_JSON functions River stage two • 11 direct dependents • 16 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::SubClass - Convenient subclassing with DBIx::Class River stage two • 11 direct dependents • 16 total dependents

This component is to allow simple subclassing of DBIx::Class Result classes....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::Me - Define predefined searches more nicely River stage two • 11 direct dependents • 16 total dependents

This component allows slightly nicer predefined search definition. See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema. It defines a single method that is shorter and (to most) clearer than "current_source_al...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::NumifyGet - Force numeric "context" on numeric columns River stage two • 11 direct dependents • 16 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::JoinTable - Easily set up join tables with DBIx::Class River stage two • 11 direct dependents • 16 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::Bare - Get an unsearched ResultSet River stage two • 11 direct dependents • 16 total dependents

Once in a blue moon you will find yourself in the frustrating position of needing a vanilla ResultSet when all you have is a ResultSet that has a search applied to it. That's what this helper is for; it gives you a method to get at an unsearched vers...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::Util - Helper utilities for DBIx::Class ResultSets River stage two • 11 direct dependents • 16 total dependents

These functions will slowly become the core implementations of many existing components. The reason for this is that often you are not able to or unwilling to add a component to an object, as adding the component fundamentally changes the object. If ...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultClass::Tee - Inflate to multiple result classes at the same time River stage two • 11 direct dependents • 16 total dependents

This result class has one obvious use case: when you have prefetched data and DBIx::Class::ResultClass::HashRefInflator is the simplest way to access all the data, but you still want to use some of the methods on your existing result class. The other...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Schema::DateTime - DateTime helper River stage two • 11 direct dependents • 16 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Schema::Verifier - Verify the Results and ResultSets of your Schemata River stage two • 11 direct dependents • 16 total dependents

"DBIx::Class::Helper::Schema::Verifier" is a minuscule framework to assist in creating schemata that are to your very own exacting specifications. It is inspired by my own travails in discovering that "use mro 'c3'" is both required and barely docume...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::Errors - add exceptions to help when calling Result methods on an ResultSets River stage two • 11 direct dependents • 16 total dependents

Users new to "DBIx::Class" often make the mistake of treating ResultSets like Results. This helper ameliorates the situation by giving a helpful error when the user calls methods for the result on the ResultSet. See "NOTE" in DBIx::Class::Helper::Res...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::OneRow - The first you always wanted River stage two • 11 direct dependents • 16 total dependents

This component codifies an alternate version of "first" in DBIx::Class::ResultSet. In practical use, "first" allows a user to do something like the following: my $rs = $schema->resultset('Foo')->search({ name => 'bar' }); my $first = $rs->first; my @...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::Random - Get random rows from a ResultSet River stage two • 11 direct dependents • 16 total dependents

This component allows convenient selection of random rows. See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema. Currently this works by doing something akin to SELECT TOP($x) from $table ORDER BY RANDOM() Lot...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::StorageValues - Keep track of stored vs in-memory row values River stage two • 11 direct dependents • 16 total dependents

This component keeps track of the value for a given column in the database. If you change the column's value and do not call "update", the "storage_value" will be different; once "update" is called the "storage_value" will be set to the value of the ...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Schema::DidYouMean - Nice error messages when you misspell the name of a ResultSet River stage two • 11 direct dependents • 16 total dependents

This helper captures errors thrown when you use the "resultset" method on your schema and typo the source name. It tries to highlight the best guess as to which you meant to type....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::SelfResultSet - Easily use ResultSet methods for the current row River stage two • 11 direct dependents • 16 total dependents

Sometimes you need to be able to access a ResultSet containing just the current row. A good reason to do that would be if you had a ResultSet method that adds in some calculated data, like counts of a relationship. You could use this to get at that c...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Schema::QuoteNames - force quote_names on River stage two • 11 direct dependents • 16 total dependents

This helper merely forces "quote_names" on, no matter how your settings are configured. You should use it....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC
72 results (0.041 seconds)